Package com.vasco.image.exception
Class ImageGeneratorSDKErrorCodes
- java.lang.Object
-
- com.vasco.image.exception.ImageGeneratorSDKErrorCodes
-
public final class ImageGeneratorSDKErrorCodes extends java.lang.ObjectDefines the error codes returned by the Image Generator SDK.
-
-
Field Summary
Fields Modifier and Type Field Description static intCRONTOSIGN_GENERATION_ERRORAn error occurred during the CrontoSign generation, the return code value is -5001.static intCRONTOSIGN_SQUARE_SIZE_INVALID_VALUEThe square size is invalid, the return code value is -5003.static intINPUT_VALUE_EMPTYThe input value is empty, the return code value is -5004.static intINPUT_VALUE_NOT_EVENThe input value has not an even length, the return code value is -5007.static intINPUT_VALUE_NOT_HEXAThe input value is not a hexadecimal value, the return code value is -5006.static intINPUT_VALUE_TOO_LONGThe input value is too long, the return code value is -5005.static intINTERNAL_ERRORAn internal error occurred, the return code value is -5000.static intQRCODE_ERROR_CORRECTION_LEVEL_INVALID_VALUEThe error correction level is invalid, the return code value is -5008.static intQRCODE_IMAGE_SIZE_INVALID_VALUEThe image size is invalid, the return code value is -5002.
-
-
-
Field Detail
-
INTERNAL_ERROR
public static final int INTERNAL_ERROR
An internal error occurred, the return code value is -5000.- See Also:
- Constant Field Values
-
CRONTOSIGN_GENERATION_ERROR
public static final int CRONTOSIGN_GENERATION_ERROR
An error occurred during the CrontoSign generation, the return code value is -5001.- See Also:
- Constant Field Values
-
QRCODE_IMAGE_SIZE_INVALID_VALUE
public static final int QRCODE_IMAGE_SIZE_INVALID_VALUE
The image size is invalid, the return code value is -5002. The image size must be betweenImageGeneratorSDKConstants.CRONTOSIGN_MIN_SQUARE_SIZEandImageGeneratorSDKConstants.CRONTOSIGN_MAX_SQUARE_SIZEpixels.- See Also:
- Constant Field Values
-
CRONTOSIGN_SQUARE_SIZE_INVALID_VALUE
public static final int CRONTOSIGN_SQUARE_SIZE_INVALID_VALUE
The square size is invalid, the return code value is -5003. The square size must be betweenImageGeneratorSDKConstants.CRONTOSIGN_MIN_SQUARE_SIZEandImageGeneratorSDKConstants.CRONTOSIGN_MAX_SQUARE_SIZEpixels.- See Also:
- Constant Field Values
-
INPUT_VALUE_EMPTY
public static final int INPUT_VALUE_EMPTY
The input value is empty, the return code value is -5004.- See Also:
- Constant Field Values
-
INPUT_VALUE_TOO_LONG
public static final int INPUT_VALUE_TOO_LONG
The input value is too long, the return code value is -5005.- See Also:
- Constant Field Values
-
INPUT_VALUE_NOT_HEXA
public static final int INPUT_VALUE_NOT_HEXA
The input value is not a hexadecimal value, the return code value is -5006.- See Also:
- Constant Field Values
-
INPUT_VALUE_NOT_EVEN
public static final int INPUT_VALUE_NOT_EVEN
The input value has not an even length, the return code value is -5007.- See Also:
- Constant Field Values
-
QRCODE_ERROR_CORRECTION_LEVEL_INVALID_VALUE
public static final int QRCODE_ERROR_CORRECTION_LEVEL_INVALID_VALUE
The error correction level is invalid, the return code value is -5008.- See Also:
- Constant Field Values
-
-